/*
|--------------------------------------------------------------------------
| UItoTop jQuery Plugin 1.2
| http://www.mattvarone.com/web-design/uitotop-jquery-plugin/
|--------------------------------------------------------------------------
*/

#toTopHover 
{
    display: none;
}
#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:10px;
	right:10px;
	overflow:hidden;
	width:51px;
	height:42px;
    border: 1px solid #fff;
	text-indent:100%;
	text-indent: -50px;
    background-image: url(up.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #fe5901;
    opacity: 0.7;
}
#toTop:active, #toTop:focus {
	outline:none;
}
#toTop:hover
{
    opacity:1;
	-webkit-transition:all 0.2s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-o-transition:all 0.2s ease-in-out;
	transition:all 0.3s ease-in-out;
}

@media (max-width: 767px){
	#toTop
	{
	    width:34px; height:28px;
    }
}